EndTouchCallback

public interface EndTouchCallback implements BrowserSyncCallback<P, R>

This callback is invoked when a TouchEnded event is about to be processed by the browser.

Return the proceed response to allow the browser to process the event.

Return the suppress response to suppress the event.

Important: the engine will be blocked until you return a response from the callback.

Since

8.0.0

Types

Link copied to clipboard
public interface Params
The parameters of the EndTouchCallback.
Link copied to clipboard
public interface Response
A response of the EndTouchCallback.

Functions

Link copied to clipboard
@CheckForNull()
public abstract R on(P params)
Invoked when the callback needs a response of type R that may be determined based on the provided callback parameters.